var myId = $(this).attr('id'); alert( myId );
var myId = $("#test").prop("id");
$(document).ready(function() { console.log($('#test').attr('id')); });